home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / RCS / rindex.c,v < prev    next >
Text File  |  1989-03-22  |  2KB  |  98 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.03.22.16.06.28;  author rab;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.04.25.13.25.39;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @*** empty log message ***
  27. @
  28. text
  29. @/* 
  30.  * rindex.c --
  31.  *
  32.  *    Source code for the "rindex" library routine.
  33.  *
  34.  * Copyright 1988 Regents of the University of California
  35.  * Permission to use, copy, modify, and distribute this
  36.  * software and its documentation for any purpose and without
  37.  * fee is hereby granted, provided that the above copyright
  38.  * notice appear in all copies.  The University of California
  39.  * makes no representations about the suitability of this
  40.  * software for any purpose.  It is provided "as is" without
  41.  * express or implied warranty.
  42.  */
  43.  
  44. #ifndef lint
  45. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/rindex.c,v 1.1 88/04/25 13:25:39 ouster Exp Locker: rab $ SPRITE (Berkeley)";
  46. #endif /* not lint */
  47.  
  48. #include <string.h>
  49.  
  50. /*
  51.  *----------------------------------------------------------------------
  52.  *
  53.  * rindex --
  54.  *
  55.  *    Locate the last appearance of a character in a string.
  56.  *
  57.  * Results:
  58.  *    The return value is the address of the last appearance
  59.  *    in string of c.  If c doesn't appear in string then 0
  60.  *    is returned.
  61.  *
  62.  * Side effects:
  63.  *    None.
  64.  *
  65.  *----------------------------------------------------------------------
  66.  */
  67.  
  68. char *
  69. rindex(string, c)
  70.     register char *string;        /* String to search. */
  71.     register char c;            /* Desired character. */
  72. {
  73.     register char *result = (char *) 0;
  74.  
  75.     while (1) {
  76.     if (*string == c) {
  77.         result = string;
  78.     }
  79.     if (*string++ == 0) {
  80.         break;
  81.     }
  82.     }
  83.     return result;
  84. }
  85. @
  86.  
  87.  
  88. 1.1
  89. log
  90. @Initial revision
  91. @
  92. text
  93. @d17 4
  94. a20 2
  95. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  96. #endif not lint
  97. @
  98.